home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Apple WWDC 1996
/
WWDC96_1996 (CD).toast
/
Technology Materials
/
MacOS 8 Resources
/
Developer Tools
/
Mac OS 8 Interfaces & Libraries
/
Interfaces
/
CIncludes
/
Packages.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-05-01
|
1KB
|
72 lines
/*
File: Packages.h
Contains: Package Manager Interfaces.
Version: Technology: System 7.5
Release: Universal Interfaces 3.0d3 on Copland DR1
Copyright: © 1984-1996 by Apple Computer, Inc. All rights reserved.
Bugs?: If you find a problem with this file, send the file and version
information (from above) and the problem description to:
Internet: apple.bugs@applelink.apple.com
AppleLink: APPLE.BUGS
*/
#ifndef __PACKAGES__
#define __PACKAGES__
#ifndef __TYPES__
#include <Types.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if PRAGMA_IMPORT_SUPPORTED
#pragma import on
#endif
#if PRAGMA_ALIGN_SUPPORTED
#pragma options align=mac68k
#endif
#if FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED
enum {
listMgr = 0, /* list manager */
dskInit = 2, /* Disk Initializaton */
stdFile = 3, /* Standard File */
flPoint = 4, /* Floating-Point Arithmetic */
trFunc = 5, /* Transcendental Functions */
intUtil = 6, /* International Utilities */
bdConv = 7, /* Binary/Decimal Conversion */
editionMgr = 11 /* Edition Manager */
};
extern pascal void InitPack(short packID)
ONEWORDINLINE(0xA9E5);
extern pascal void InitAllPacks(void )
ONEWORDINLINE(0xA9E6);
#endif
#if PRAGMA_ALIGN_SUPPORTED
#pragma options align=reset
#endif
#if PRAGMA_IMPORT_SUPPORTED
#pragma import off
#endif
#ifdef __cplusplus
}
#endif
#endif /* __PACKAGES__ */